# Run in phpMyAdmin or Whatever You're Using to Reach your Database Panel:
INSERT INTO `settings` (`id`, `access_key`, `value`) VALUES (NULL, 'openai_api_key', ''), (NULL, 'openai_frequency_penalty', '0.5'), (NULL, 'openai_max_tokens', '300'), (NULL, 'openai_model', 'gpt-4o'), (NULL, 'openai_presence_penalty', '0.5'), (NULL, 'openai_status', '0'), (NULL, 'openai_temperature', '0.7'), (NULL, 'openai_top_p', '0.9');
INSERT INTO `permissions` (`id`, `name`, `access_key`) VALUES (NULL, 'AI Writer', 'ai_writer');

# If you have created custom permissions, go to the Super Admin and Agent roles to assign them manually instead of executing the following database query:
INSERT INTO `roles_permissions` (`id`, `role_id`, `permission_id`) VALUES (NULL, '1', '24'), (NULL, '2', '24');
